home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_07_02 / v7n2046b.txt < prev    next >
Encoding:
Text File  |  1988-12-07  |  292 b   |  15 lines

  1. /* interface to vmalloc module */
  2. #include <malloc.h>
  3.  
  4. char *vmalloc();
  5. void vfree();
  6. void vverify();
  7. char *vrealloc();
  8. char *vcalloc();
  9. void vdump();
  10.  
  11. #define malloc(a) vmalloc(a)
  12. #define free(a) vfree(a)
  13. #define realloc(a, b) vrealloc(a, b)
  14. #define calloc(a, b) vcalloc(a, b)
  15.